\(\int \frac {(a+b x) (A+B x)}{\sqrt {x}} \, dx\) [323]

   Optimal result
   Rubi [A] (verified)
   Mathematica [A] (verified)
   Maple [A] (verified)
   Fricas [A] (verification not implemented)
   Sympy [A] (verification not implemented)
   Maxima [A] (verification not implemented)
   Giac [A] (verification not implemented)
   Mupad [B] (verification not implemented)

Optimal result

Integrand size = 16, antiderivative size = 37 \[ \int \frac {(a+b x) (A+B x)}{\sqrt {x}} \, dx=2 a A \sqrt {x}+\frac {2}{3} (A b+a B) x^{3/2}+\frac {2}{5} b B x^{5/2} \]

[Out]

2/3*(A*b+B*a)*x^(3/2)+2/5*b*B*x^(5/2)+2*a*A*x^(1/2)

Rubi [A] (verified)

Time = 0.01 (sec) , antiderivative size = 37, normalized size of antiderivative = 1.00, number of steps used = 2, number of rules used = 1, \(\frac {\text {number of rules}}{\text {integrand size}}\) = 0.062, Rules used = {77} \[ \int \frac {(a+b x) (A+B x)}{\sqrt {x}} \, dx=\frac {2}{3} x^{3/2} (a B+A b)+2 a A \sqrt {x}+\frac {2}{5} b B x^{5/2} \]

[In]

Int[((a + b*x)*(A + B*x))/Sqrt[x],x]

[Out]

2*a*A*Sqrt[x] + (2*(A*b + a*B)*x^(3/2))/3 + (2*b*B*x^(5/2))/5

Rule 77

Int[((d_.)*(x_))^(n_.)*((a_) + (b_.)*(x_))*((e_) + (f_.)*(x_))^(p_.), x_Symbol] :> Int[ExpandIntegrand[(a + b*
x)*(d*x)^n*(e + f*x)^p, x], x] /; FreeQ[{a, b, d, e, f, n}, x] && IGtQ[p, 0] && (NeQ[n, -1] || EqQ[p, 1]) && N
eQ[b*e + a*f, 0] && ( !IntegerQ[n] || LtQ[9*p + 5*n, 0] || GeQ[n + p + 1, 0] || (GeQ[n + p + 2, 0] && Rational
Q[a, b, d, e, f])) && (NeQ[n + p + 3, 0] || EqQ[p, 1])

Rubi steps \begin{align*} \text {integral}& = \int \left (\frac {a A}{\sqrt {x}}+(A b+a B) \sqrt {x}+b B x^{3/2}\right ) \, dx \\ & = 2 a A \sqrt {x}+\frac {2}{3} (A b+a B) x^{3/2}+\frac {2}{5} b B x^{5/2} \\ \end{align*}

Mathematica [A] (verified)

Time = 0.02 (sec) , antiderivative size = 31, normalized size of antiderivative = 0.84 \[ \int \frac {(a+b x) (A+B x)}{\sqrt {x}} \, dx=\frac {2}{15} \sqrt {x} (5 a (3 A+B x)+b x (5 A+3 B x)) \]

[In]

Integrate[((a + b*x)*(A + B*x))/Sqrt[x],x]

[Out]

(2*Sqrt[x]*(5*a*(3*A + B*x) + b*x*(5*A + 3*B*x)))/15

Maple [A] (verified)

Time = 0.10 (sec) , antiderivative size = 27, normalized size of antiderivative = 0.73

method result size
trager \(\left (\frac {2}{5} b B \,x^{2}+\frac {2}{3} A b x +\frac {2}{3} B a x +2 A a \right ) \sqrt {x}\) \(27\)
gosper \(\frac {2 \sqrt {x}\, \left (3 b B \,x^{2}+5 A b x +5 B a x +15 A a \right )}{15}\) \(28\)
derivativedivides \(\frac {2 \left (A b +B a \right ) x^{\frac {3}{2}}}{3}+\frac {2 b B \,x^{\frac {5}{2}}}{5}+2 a A \sqrt {x}\) \(28\)
default \(\frac {2 \left (A b +B a \right ) x^{\frac {3}{2}}}{3}+\frac {2 b B \,x^{\frac {5}{2}}}{5}+2 a A \sqrt {x}\) \(28\)
risch \(\frac {2 \sqrt {x}\, \left (3 b B \,x^{2}+5 A b x +5 B a x +15 A a \right )}{15}\) \(28\)

[In]

int((b*x+a)*(B*x+A)/x^(1/2),x,method=_RETURNVERBOSE)

[Out]

(2/5*b*B*x^2+2/3*A*b*x+2/3*B*a*x+2*A*a)*x^(1/2)

Fricas [A] (verification not implemented)

none

Time = 0.22 (sec) , antiderivative size = 27, normalized size of antiderivative = 0.73 \[ \int \frac {(a+b x) (A+B x)}{\sqrt {x}} \, dx=\frac {2}{15} \, {\left (3 \, B b x^{2} + 15 \, A a + 5 \, {\left (B a + A b\right )} x\right )} \sqrt {x} \]

[In]

integrate((b*x+a)*(B*x+A)/x^(1/2),x, algorithm="fricas")

[Out]

2/15*(3*B*b*x^2 + 15*A*a + 5*(B*a + A*b)*x)*sqrt(x)

Sympy [A] (verification not implemented)

Time = 0.08 (sec) , antiderivative size = 44, normalized size of antiderivative = 1.19 \[ \int \frac {(a+b x) (A+B x)}{\sqrt {x}} \, dx=2 A a \sqrt {x} + \frac {2 A b x^{\frac {3}{2}}}{3} + \frac {2 B a x^{\frac {3}{2}}}{3} + \frac {2 B b x^{\frac {5}{2}}}{5} \]

[In]

integrate((b*x+a)*(B*x+A)/x**(1/2),x)

[Out]

2*A*a*sqrt(x) + 2*A*b*x**(3/2)/3 + 2*B*a*x**(3/2)/3 + 2*B*b*x**(5/2)/5

Maxima [A] (verification not implemented)

none

Time = 0.20 (sec) , antiderivative size = 27, normalized size of antiderivative = 0.73 \[ \int \frac {(a+b x) (A+B x)}{\sqrt {x}} \, dx=\frac {2}{5} \, B b x^{\frac {5}{2}} + 2 \, A a \sqrt {x} + \frac {2}{3} \, {\left (B a + A b\right )} x^{\frac {3}{2}} \]

[In]

integrate((b*x+a)*(B*x+A)/x^(1/2),x, algorithm="maxima")

[Out]

2/5*B*b*x^(5/2) + 2*A*a*sqrt(x) + 2/3*(B*a + A*b)*x^(3/2)

Giac [A] (verification not implemented)

none

Time = 0.28 (sec) , antiderivative size = 29, normalized size of antiderivative = 0.78 \[ \int \frac {(a+b x) (A+B x)}{\sqrt {x}} \, dx=\frac {2}{5} \, B b x^{\frac {5}{2}} + \frac {2}{3} \, B a x^{\frac {3}{2}} + \frac {2}{3} \, A b x^{\frac {3}{2}} + 2 \, A a \sqrt {x} \]

[In]

integrate((b*x+a)*(B*x+A)/x^(1/2),x, algorithm="giac")

[Out]

2/5*B*b*x^(5/2) + 2/3*B*a*x^(3/2) + 2/3*A*b*x^(3/2) + 2*A*a*sqrt(x)

Mupad [B] (verification not implemented)

Time = 0.04 (sec) , antiderivative size = 27, normalized size of antiderivative = 0.73 \[ \int \frac {(a+b x) (A+B x)}{\sqrt {x}} \, dx=\frac {2\,\sqrt {x}\,\left (15\,A\,a+5\,A\,b\,x+5\,B\,a\,x+3\,B\,b\,x^2\right )}{15} \]

[In]

int(((A + B*x)*(a + b*x))/x^(1/2),x)

[Out]

(2*x^(1/2)*(15*A*a + 5*A*b*x + 5*B*a*x + 3*B*b*x^2))/15